Open
Conversation
4d70bbf to
8c6d5a4
Compare
Collaborator
Author
voltjia
approved these changes
Apr 8, 2026
Ziminli
requested changes
Apr 9, 2026
Comment on lines
+23
to
+46
| # def interpolate( | ||
| # input: Tensor, | ||
| # size: Optional[Union[int, Sequence[int]]] = None, | ||
| # scale_factor: Optional[Union[float, Sequence[float]]] = None, | ||
| # mode: str = "nearest", | ||
| # align_corners: Optional[bool] = None, | ||
| # recompute_scale_factor: Optional[bool] = None, | ||
| # ) -> Tensor: | ||
| # if mode == "nearest": | ||
| # if align_corners is not None: | ||
| # raise ValueError( | ||
| # "align_corners option can only be set with the " | ||
| # "interpolating modes: linear | bilinear | bicubic | trilinear" | ||
| # ) | ||
| # return upsample_nearest(input, size, scale_factor) | ||
|
|
||
| # if mode == "bilinear": | ||
| # if align_corners is None: | ||
| # align_corners = False | ||
| # return upsample_bilinear(input, size, scale_factor, align_corners) | ||
|
|
||
| # raise NotImplementedError( | ||
| # f"Interpolation mode '{mode}' is not currently supported." | ||
| # ) |
Collaborator
Author
There was a problem hiding this comment.
这先留着吧,是另一个人实现的upsample,两个实现都是对的,以防以后有切换的时候
8c6d5a4 to
5c6aa1c
Compare
5c6aa1c to
6e28dfc
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




No description provided.